correctness$16843$ - traduction vers allemand
Diclib.com
Dictionnaire ChatGPT
Entrez un mot ou une phrase dans n'importe quelle langue 👆
Langue:

Traduction et analyse de mots par intelligence artificielle ChatGPT

Sur cette page, vous pouvez obtenir une analyse détaillée d'un mot ou d'une phrase, réalisée à l'aide de la meilleure technologie d'intelligence artificielle à ce jour:

  • comment le mot est utilisé
  • fréquence d'utilisation
  • il est utilisé plus souvent dans le discours oral ou écrit
  • options de traduction de mots
  • exemples d'utilisation (plusieurs phrases avec traduction)
  • étymologie

correctness$16843$ - traduction vers allemand

QUALITY OF AN ALGORITHM BEING CORRECT WITH RESPECT TO A SPECIFICATION
Program correctness; Partial correctness; Proof of correctness; Total correctness; Partial algorithm; Provably correct; Correctness of computer programs; Formal proof of correctness; Correct algorithm; Incorrect algorithm

correctness      
n. Ehrlichkeit, Korrektheit
ten thousand         
  • Thalatta! Thalatta! (The Sea! The Sea!)]]'' — painting by [[Bernard Granville Baker]], 1901
  • Retreat of the Ten Thousand at the Battle of Cunaxa, by [[Jean-Adrien Guignet]]. Louvre
  • Pharnabazus]] fought the Ten Thousand to prevent them from plundering [[Bithynia]] and [[Hellespontine Phrygia]].
  • ''Thálatta! Thálatta!'' (Θάλαττα! θάλαττα!, "The Sea! The Sea!").<br /> [[Trapezus]] (Trebizond) was the first Greek city the Ten Thousand reached on their retreat from inland Persia, 19th-c. illustration by Herman Vogel
  • url=https://archive.org/details/xenophon03xeno/page/n5}}</ref>
  • Xenophon and the Ten Thousand hail the sea, 19th-century illustration
NATURAL NUMBER
Ten thousand; 10 000; 10,000 (number); 10946 (number); 10800; 17711 (number); 10 thousand; 10⁴; 12765 (number); 12765; 𐡟; 10501 (number); 1e4; 1E4; 10000 (number); 10000; 10^4; 16843 (number); 16843; Draft:One Hundred Hundred; 10**4; 10'000
zehntausend; Zehntausend

Définition

correct
adj.
true
1) correct in (you are correct in thinking that he is foolish)
2) correct to + inf. (it would be correct to say that we have committed a blunder)
3) correct that + clause (is it correct that he has resigned?)

Wikipédia

Correctness (computer science)

In theoretical computer science, an algorithm is correct with respect to a specification if it behaves as specified. Best explored is functional correctness, which refers to the input-output behavior of the algorithm (i.e., for each input it produces an output satisfying the specification).

Within the latter notion, partial correctness, requiring that if an answer is returned it will be correct, is distinguished from total correctness, which additionally requires that an answer is eventually returned, i.e. the algorithm terminates. Correspondingly, to prove a program's total correctness, it is sufficient to prove its partial correctness, and its termination. The latter kind of proof (termination proof) can never be fully automated, since the halting problem is undecidable.

For example, successively searching through integers 1, 2, 3, … to see if we can find an example of some phenomenon—say an odd perfect number—it is quite easy to write a partially correct program (see box). But to say this program is totally correct would be to assert something currently not known in number theory.

A proof would have to be a mathematical proof, assuming both the algorithm and specification are given formally. In particular it is not expected to be a correctness assertion for a given program implementing the algorithm on a given machine. That would involve such considerations as limitations on computer memory.

A deep result in proof theory, the Curry–Howard correspondence, states that a proof of functional correctness in constructive logic corresponds to a certain program in the lambda calculus. Converting a proof in this way is called program extraction.

Hoare logic is a specific formal system for reasoning rigorously about the correctness of computer programs. It uses axiomatic techniques to define programming language semantics and argue about the correctness of programs through assertions known as Hoare triples.

Software testing is any activity aimed at evaluating an attribute or capability of a program or system and determining that it meets its required results. Although crucial to software quality and widely deployed by programmers and testers, software testing still remains an art, due to limited understanding of the principles of software. The difficulty in software testing stems from the complexity of software: we can not completely test a program with moderate complexity. Testing is more than just debugging. The purpose of testing can be quality assurance, verification and validation, or reliability estimation. Testing can be used as a generic metric as well. Correctness testing and reliability testing are two major areas of testing. Software testing is a trade-off between budget, time and quality.